home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / PROGRAMM / 2499.ZIP / VERREG.ZIP / DEMO.DEF < prev    next >
Text File  |  1990-06-13  |  423b  |  16 lines

  1. NAME         Demo        ; application's module name
  2. EXETYPE        WINDOWS
  3. DESCRIPTION    'Demo Windows Application'
  4. STUB        'WINSTUB.EXE'    ; Generates error message if application
  5.                 ; is run without Windows
  6.  
  7. CODE        LOADONCALL MOVEABLE DISCARDABLE
  8. DATA        MOVEABLE MULTIPLE
  9.  
  10. HEAPSIZE    1024
  11. STACKSIZE    4096  ; recommended minimum for Windows applications
  12.  
  13. EXPORTS
  14.     DemoWndProc    @1  ; name of window processing function
  15.     DemoDlgProc1    @2
  16.